Beginning of keyhash tests
authorMatthias Clasen <mclasen@redhat.com>
Sun, 22 Apr 2012 05:32:20 +0000 (01:32 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 22 Apr 2012 17:00:46 +0000 (13:00 -0400)
Not very interesting yet

gtk/tests/Makefile.am
gtk/tests/keyhash.c [new file with mode: 0644]

index b8ef3146b806590f88f8d0d8e8a45e111bf49cb3..7dbe2345c4a77f33638f7f0ce60f78ccd4f75768 100644 (file)
@@ -146,6 +146,17 @@ TEST_PROGS                 += regression-tests
 regression_tests_SOURCES        = regression-tests.c
 regression_tests_LDADD          = $(progs_ldadd)
 
+TEST_PROGS                     += keyhash
+keyhash_SOURCES                         = keyhash.c \
+                                  ../gtkkeyhash.c ../gtkkeyhash.h \
+                                  ../gtkprivate.c ../gtkprivate.h
+keyhash_LDADD                   = $(progs_ldadd)
+keyhash_CFLAGS                  = -DGTK_COMPILATION \
+                                  -DGTK_LIBDIR=\"$(libdir)\" \
+                                  -DGTK_DATADIR=\"$(datadir)\" \
+                                  -DGTK_DATA_PREFIX=\"$(prefix)\" \
+                                  -DGTK_SYSCONFDIR=\"$(sysconfdir)\"
+
 EXTRA_DIST +=                          \
        file-chooser-test-dir/empty     \
        file-chooser-test-dir/text.txt
diff --git a/gtk/tests/keyhash.c b/gtk/tests/keyhash.c
new file mode 100644 (file)
index 0000000..883eb65
--- /dev/null
@@ -0,0 +1,199 @@
+/* keyhash.c
+ * Copyright (C) 2012 Red Hat, Inc12 Red Hat, Inc
+ * Authors: Matthias Clasen
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <gtk/gtk.h>
+#include <gdk/gdkkeysyms.h>
+#include "../gtkkeyhash.h"
+#include "../gtkprivate.h"
+
+static gint count;
+
+static void
+counting_destroy (gpointer data)
+{
+  count++;
+}
+
+static void
+test_basic (void)
+{
+  GtkKeyHash *hash;
+  GSList *keys;
+
+  count = 0;
+  hash = _gtk_key_hash_new (gdk_keymap_get_default (), counting_destroy);
+
+  keys = _gtk_key_hash_lookup (hash, 0, 0, 0, 0);
+  g_assert (keys == NULL);
+
+  _gtk_key_hash_add_entry (hash, 1, 0, NULL);
+  _gtk_key_hash_add_entry (hash, 1, 1, NULL);
+  _gtk_key_hash_add_entry (hash, 2, 0, NULL);
+  _gtk_key_hash_add_entry (hash, 3, 0, NULL);
+  _gtk_key_hash_add_entry (hash, 4, 0, NULL);
+
+  _gtk_key_hash_free (hash);
+
+  g_assert_cmpint (count, ==, 5);
+}
+
+
+typedef struct
+{
+  guint           keyval;
+  GdkModifierType modifiers;
+} Entry;
+
+static void
+test_lookup (GtkKeyHash      *hash,
+             guint            keyval,
+             GdkModifierType  modifiers,
+             GdkModifierType  mask,
+             gint             n_results,
+             ...)
+{
+  va_list ap;
+  gint d;
+  GSList *res, *l;
+  gint i;
+  GdkKeymapKey *keys;
+  gint n_keys;
+
+  gdk_keymap_get_entries_for_keyval (gdk_keymap_get_default (), keyval, &keys, &n_keys);
+  if (n_keys == 0)
+    return;
+
+  res = _gtk_key_hash_lookup (hash, keys[0].keycode, modifiers, mask, keys[0].group);
+  g_free (keys);
+
+  g_assert_cmpint (g_slist_length (res), ==, n_results);
+
+  va_start (ap, n_results);
+  for (i = 0, l = res; i < n_results; i++, l = l->next)
+    {
+      d = va_arg (ap, int);
+      g_assert_cmpint (d, ==, GPOINTER_TO_INT (l->data));
+    }
+  va_end (ap);
+
+  g_slist_free (res);
+}
+
+static void
+add_entries (GtkKeyHash *hash,
+             Entry      *entries)
+{
+  gint i;
+
+  for (i = 0; entries[i].keyval; i++)
+    _gtk_key_hash_add_entry (hash, entries[i].keyval, entries[i].modifiers, GINT_TO_POINTER (i+1));
+}
+
+#define DEFAULT_MASK (GDK_CONTROL_MASK \
+                      | GDK_SHIFT_MASK \
+                      | GDK_MOD1_MASK  \
+                      | GDK_SUPER_MASK \
+                      | GDK_HYPER_MASK \
+                      | GDK_META_MASK)
+
+static void
+test_match (void)
+{
+  GtkKeyHash *hash;
+  static Entry entries[] = {
+    { GDK_KEY_a, GDK_CONTROL_MASK },
+    { GDK_KEY_a, GDK_CONTROL_MASK|GDK_SHIFT_MASK } ,
+    { GDK_KEY_b, GDK_MOD1_MASK|GDK_CONTROL_MASK },
+    { GDK_KEY_F10, 0 },
+    {  0, 0 }
+  };
+
+  hash = _gtk_key_hash_new (gdk_keymap_get_default (), NULL);
+  add_entries (hash, entries);
+
+  test_lookup (hash, GDK_KEY_a, GDK_CONTROL_MASK, DEFAULT_MASK, 4, 1, 1, 2, 2);
+  test_lookup (hash, GDK_KEY_A, GDK_CONTROL_MASK, DEFAULT_MASK, 4, 1, 1, 2, 2);
+  test_lookup (hash, GDK_KEY_a, GDK_MOD1_MASK, DEFAULT_MASK, 0);
+  test_lookup (hash, GDK_KEY_F10, 0, DEFAULT_MASK, 4, 4, 4, 4, 4);
+  test_lookup (hash, GDK_KEY_F10, GDK_SHIFT_MASK, DEFAULT_MASK, 4, 4, 4, 4, 4);
+
+  _gtk_key_hash_free (hash);
+}
+
+static gboolean
+hyper_equals_super (void)
+{
+  GdkModifierType mods1, mods2;
+
+  mods1 = GDK_HYPER_MASK;
+  gdk_keymap_map_virtual_modifiers (gdk_keymap_get_default (), &mods1);
+  mods1 = mods1 & ~GDK_HYPER_MASK;
+  mods2 = GDK_SUPER_MASK;
+  gdk_keymap_map_virtual_modifiers (gdk_keymap_get_default (), &mods2);
+  mods2 = mods2 & ~GDK_SUPER_MASK;
+
+  return mods1 == mods2;
+}
+
+static void
+test_virtual (void)
+{
+  GtkKeyHash *hash;
+  static Entry entries[] = {
+    { GDK_KEY_a, GDK_SUPER_MASK },
+    { GDK_KEY_b, GDK_HYPER_MASK } ,
+    { GDK_KEY_c, GDK_META_MASK },
+    { GDK_KEY_d, GDK_SUPER_MASK|GDK_HYPER_MASK },
+    {  0, 0 }
+  };
+
+  hash = _gtk_key_hash_new (gdk_keymap_get_default (), NULL);
+  add_entries (hash, entries);
+
+  test_lookup (hash, GDK_KEY_a, GDK_SUPER_MASK, DEFAULT_MASK, 2, 1, 1);
+  test_lookup (hash, GDK_KEY_a, GDK_HYPER_MASK, DEFAULT_MASK, 0);
+  test_lookup (hash, GDK_KEY_b, GDK_HYPER_MASK, DEFAULT_MASK, 2, 2, 2);
+  test_lookup (hash, GDK_KEY_c, GDK_META_MASK,  DEFAULT_MASK, 2, 3, 3);
+  if (hyper_equals_super ())
+    {
+      GdkModifierType mods;
+
+      /* test that colocated virtual modifiers don't count twice */
+      test_lookup (hash, GDK_KEY_d, GDK_SUPER_MASK, DEFAULT_MASK, 0);
+      test_lookup (hash, GDK_KEY_d, GDK_HYPER_MASK, DEFAULT_MASK, 0);
+
+      mods = GDK_HYPER_MASK;
+      gdk_keymap_map_virtual_modifiers (gdk_keymap_get_default (), &mods);
+      test_lookup (hash, GDK_KEY_d, mods, DEFAULT_MASK, 0);
+    }
+
+  _gtk_key_hash_free (hash);
+}
+
+int
+main (int argc, char **argv)
+{
+  /* initialize test program */
+  gtk_test_init (&argc, &argv);
+
+  g_test_add_func ("/keyhash/basic", test_basic);
+  g_test_add_func ("/keyhash/match", test_match);
+  g_test_add_func ("/keyhash/virtual", test_virtual);
+
+  return g_test_run();
+}